home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _0CD4F3B7392649B6B6CEA448A2035AB7 < prev    next >
Encoding:
Text File  |  2004-01-06  |  667 b   |  26 lines

  1. // ===============================================================
  2. // Vertex Program: 
  3. // Description: 
  4. // Last Update: 14/08/2003
  5. // Coder: Andrey Honich
  6. // ===============================================================
  7.  
  8.       #include "../CGVPMacro.csi"
  9.  
  10.  
  11.       VertAttributes { POSITION_3 TEXCOORD0_2 }
  12.       
  13.       MainInput { VIEWPROJ_MATRIX, LIGHT_MATRIX }
  14.       DeclarationsScript
  15.       {
  16.         IN_T0_C0
  17.         OUT_T0_T1_C0
  18.       }
  19.       PositionScript = PosCommon                 
  20.       CoreScript
  21.       {
  22.         OUT.Tex0.xy = IN.TexCoord0.xy;
  23.         OUT.Tex1 = mul(LightMatrix, vPos);
  24.         OUT.Color = IN.Color;
  25.       }
  26.